Upload the photo of a receipt, and we’ll scan it to extract the
expense information if we can.
Title:
{receiptInfo?.title ?? '…'}
Category:
{receiptInfoCategory ? (
{receiptInfoCategory.grouping}
{receiptInfoCategory.name}
) : (
'' || '…'
)}
Amount:
{receiptInfo?.amount ? (
<>
{groupCurrency} {receiptInfo.amount.toFixed(2)}
>
) : (
'…'
)}
Date:
{receiptInfo?.date
? formatExpenseDate(
new Date(`${receiptInfo?.date}T12:00:00.000Z`),
)
: '…'}
You’ll be able to edit the expense information after creating it.